home *** CD-ROM | disk | FTP | other *** search
- /* NeXtInterface.h */
-
- /* written by : Jason R. Wilson 2/21/93 */
-
- /* this package (along with CView) provides a NeXtStep interface for
- NeXtRad */
-
- #include <stdlib.h>
- #include <stdio.h>
-
- int winWidth; /* width of the view area in pixels */
- int winHeight; /* height of the view area in pixels */
-
- void SetWidth (int width);
- /* sets the width of the view screen */
- void SetHeight (int height);
- /* sets the height of the view screen */
- void SetPixel (int x, int y,unsigned char r,unsigned char g,unsigned char b);
- /* sets a pixel in the Screen Buffer */
- void Update (void);
- /* updates the view area (redraws the screenbuf) */
-
-